home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / StdoutRead.au3 < prev    next >
Text File  |  2006-07-22  |  416b  |  19 lines

  1. ; Demonstrates StdoutRead()
  2. #include <Constants.au3>
  3.  
  4. $foo = Run(@ComSpec & " /c dir foo.bar", @SystemDir, @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
  5.  
  6. While 1
  7.     $line = StdoutRead($foo)
  8.     If @error Then ExitLoop
  9.     MsgBox(0, "STDOUT read:", $line)
  10. Wend
  11.  
  12. While 1
  13.     $line = StderrRead($foo)
  14.     If @error Then ExitLoop
  15.     MsgBox(0, "STDERR read:", $line)
  16. Wend
  17.  
  18. MsgBox(0, "Debug", "Exiting...")
  19.